reactive

前面的很多例子使用到了 reactive,现在我们来正式操练它。

reactive 接受一个对象参数,然后返回一个具有响应式的原始值代理对象。

  1. //通过reactive(),count具有了响应式的能力
  2. const obj = reactive({ count: 0 })
  • 示例
  1. <template>
  2. <div>
  3. <button @click="increase">被点击了{{obj.count}}次</button>
  4. </div>
  5. </template>
  6. <script>
  7. import { createComponent, reactive } from '@vue/composition-api'
  8. export default createComponent({
  9. setup() {
  10. const obj = reactive({ count: 0 })
  11. const increase = () => {
  12. obj.count++
  13. }
  14. return {
  15. obj,
  16. increase
  17. }
  18. }
  19. })
  20. </script>

到这里你已经学会了 reactive,下面我们继续迎难而上。